home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / gauntlet_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  88 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10420);
  10.  script_bugtraq_id(1234);
  11.  script_version ("$Revision: 1.9 $");
  12.  script_cve_id("CVE-2000-0437");
  13.  
  14.  name["english"] = "Gauntlet overflow";
  15.  name["francais"] = "DΘpassement de buffer dans Gauntlet";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. It seems that the remote host is vulnerable
  20. to a buffer overflow on port 8999, which may
  21. give a shell access to anyone.
  22.  
  23. Solution : if the remote host is a Gauntlet firewall, then
  24. see http://www.tis.com/support/cyberadvisory.html, or else
  25. you can probably ignore this alert.
  26.  
  27. Risk factor : High";
  28.  
  29.  
  30.  
  31.  desc["francais"] = "
  32. Le serveur distant semble etre vulnΘrable α un dΘpassement
  33. de buffer sur le port 8999, qui peut donner un shell
  34. α n'importe qui.
  35.  
  36. Solution : si l'hote distant est un firewall Gauntlet, alors
  37. allez voir http://www.tis.com/support/cyberadvisory.html, sinon
  38. pouvez probablement ignorer ce message
  39.  
  40. Facteur de risque : ElevΘ";
  41.  
  42.  
  43.  script_description(english:desc["english"], francais:desc["francais"]);
  44.  
  45.  summary["english"] = "Overflow in the Gauntlet product line";
  46.  summary["francais"] = "DΘpassement de buffer dans la ligne de produits Gauntlet";
  47.  
  48.  script_summary(english:summary["english"], francais:summary["francais"]);
  49.  
  50.  script_category(ACT_DESTRUCTIVE_ATTACK);
  51.  
  52.  
  53.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  54.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  55.  family["english"] = "Gain a shell remotely";
  56.  family["francais"] = "Obtenir un shell α distance";
  57.  script_family(english:family["english"], francais:family["francais"]);
  58.  script_dependencie("find_service.nes");
  59.  script_require_ports(8999);
  60.  exit(0);
  61. }
  62.  
  63.  
  64. port = 8999;
  65. if(get_port_state(port))
  66. {
  67.   soc = open_sock_tcp(port);
  68.   if(soc)
  69.   {
  70.     req = string("10003.http://", crap(10), "\r\n");
  71.     send(socket:soc, data:req);
  72.     r = recv(socket:soc, length:2048);
  73.     close(soc);
  74.     if ( ! r ) exit(0);
  75.  
  76.     soc = open_sock_tcp(port);
  77.     if ( ! soc ) exit(0);
  78.     req = string("10003.http://", crap(10000), "\r\n");
  79.     send(socket:soc, data:req);
  80.     r = recv(socket:soc, length:2048);
  81.     close(soc);
  82.     if(!r)
  83.     {
  84.       security_hole(port);
  85.     }
  86.   }
  87. }
  88.